home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / mysql / scripts / mysql_install_db < prev    next >
Text File  |  2005-04-01  |  9KB  |  303 lines

  1. #!/bin/sh
  2. # Copyright (C) 2002-2003 MySQL AB
  3. # For a more info consult the file COPYRIGHT distributed with this file.
  4.  
  5. # This scripts creates the privilege tables db, host, user, tables_priv,
  6. # columns_priv in the mysql database, as well as the func table.
  7. #
  8. # All unrecognized arguments to this script are passed to mysqld.
  9.  
  10. in_rpm=0
  11. windows=0
  12. defaults=""
  13. user=""
  14. tmp_file=/tmp/mysql_install_db.$$
  15.  
  16. case "$1" in
  17.     --no-defaults|--defaults-file=*|--defaults-extra-file=*)
  18.       defaults="$1"; shift
  19.       ;;
  20. esac
  21.  
  22. parse_arguments() {
  23.   # We only need to pass arguments through to the server if we don't
  24.   # handle them here.  So, we collect unrecognized options (passed on
  25.   # the command line) into the args variable.
  26.   pick_args=
  27.   if test "$1" = PICK-ARGS-FROM-ARGV
  28.   then
  29.     pick_args=1
  30.     shift
  31.   fi
  32.  
  33.   for arg do
  34.     case "$arg" in
  35.       --force) force=1 ;;
  36.       --basedir=*) basedir=`echo "$arg" | sed -e 's/^[^=]*=//'` ;;
  37.       --ldata=*|--datadir=*) ldata=`echo "$arg" | sed -e 's/^[^=]*=//'` ;;
  38.       --user=*)
  39.         # Note that the user will be passed to mysqld so that it runs
  40.         # as 'user' (crucial e.g. if log-bin=/some_other_path/
  41.         # where a chown of datadir won't help)
  42.      user=`echo "$arg" | sed -e 's/^[^=]*=//'` ;;
  43.       --skip-name-resolve) ip_only=1 ;;
  44.       --verbose) verbose=1 ;;
  45.       --rpm) in_rpm=1 ;;
  46.       --windows) windows=1 ;;
  47.       *)
  48.         if test -n "$pick_args"
  49.         then
  50.           # This sed command makes sure that any special chars are quoted,
  51.           # so the arg gets passed exactly to the server.
  52.           args="$args "`echo "$arg" | sed -e 's,\([^a-zA-Z0-9_.-]\),\\\\\1,g'`
  53.         fi
  54.         ;;
  55.     esac
  56.   done
  57. }
  58.  
  59. # Get first arguments from the my.cfg file, groups [mysqld] and
  60. # [mysql_install_db], and then merge with the command line arguments
  61. if test -x ./bin/my_print_defaults
  62. then
  63.   print_defaults="./bin/my_print_defaults"
  64. elif test -x ./extra/my_print_defaults
  65. then
  66.   print_defaults="./extra/my_print_defaults"
  67. elif test -x /usr/local/bin/my_print_defaults
  68. then
  69.   print_defaults="/usr/local/bin/my_print_defaults"
  70. elif test -x /usr/local/bin/mysql_print_defaults
  71. then
  72.   print_defaults="/usr/local/bin/mysql_print_defaults"
  73. else
  74.   print_defaults="my_print_defaults"
  75. fi
  76.  
  77. args=
  78. ldata=
  79. execdir=
  80. bindir=
  81. basedir=
  82. force=0
  83. verbose=0
  84. fill_help_tables=""
  85.  
  86. parse_arguments `$print_defaults $defaults mysqld mysql_install_db`
  87. parse_arguments PICK-ARGS-FROM-ARGV "$@"
  88.  
  89. test -z "$ldata" && ldata=/usr/local/var
  90. if test -z "$basedir"
  91. then
  92.   basedir=/usr/local
  93.   bindir=/usr/local/bin
  94.   execdir=/usr/local/libexec
  95.   pkgdatadir=/usr/local/share/mysql
  96. else
  97.   bindir="$basedir/bin"
  98.   if test -x "$basedir/libexec/mysqld"
  99.   then
  100.     execdir="$basedir/libexec"
  101.   elif test -x "$basedir/sbin/mysqld"
  102.   then
  103.     execdir="$basedir/sbin"
  104.   else
  105.     execdir="$basedir/bin"
  106.   fi
  107. fi
  108.  
  109. # find fill_help_tables.sh
  110. for i in $basedir/support-files $basedir/share $basedir/share/mysql $basedir/scripts `pwd` `pwd`/scripts /usr/local/share/mysql
  111. do
  112.   if test -f $i/fill_help_tables.sql
  113.   then
  114.     pkgdatadir=$i
  115.   fi
  116. done
  117.  
  118. if test -f $pkgdatadir/fill_help_tables.sql
  119. then
  120.   fill_help_tables=$pkgdatadir/fill_help_tables.sql
  121. else
  122.   echo "Could not find help file 'fill_help_tables.sql' in /usr/local/share/mysql or inside $basedir".
  123.   exit 1;
  124. fi
  125.  
  126. mdata=$ldata/mysql
  127. mysqld=$execdir/mysqld
  128. mysqld_opt=""
  129. scriptdir=$bindir
  130.  
  131. if test "$windows" = 1
  132. then
  133.   mysqld="./sql/mysqld"
  134.   mysqld_opt="--language=./sql/share/english"
  135.   scriptdir="./scripts"
  136. fi
  137.  
  138. if test ! -x $mysqld
  139. then
  140.   if test "$in_rpm" = 1
  141.   then
  142.     echo "FATAL ERROR $mysqld not found!"
  143.     exit 1
  144.   else
  145.     echo "Didn't find $mysqld"
  146.     echo "You should do a 'make install' before executing this script"
  147.     exit 1
  148.   fi
  149. fi
  150.  
  151. # Try to determine the hostname
  152. hostname=`/bin/hostname`
  153.  
  154. # Check if hostname is valid
  155. if test "$windows" = 0 -a "$in_rpm" = 0 -a $force = 0
  156. then
  157.   resolved=`$bindir/resolveip $hostname 2>&1`
  158.   if [ $? -ne 0 ]
  159.   then
  160.     resolved=`$bindir/resolveip localhost 2>&1`
  161.     if [ $? -ne 0 ]
  162.     then
  163.       echo "Neither host '$hostname' nor 'localhost' could be looked up with"
  164.       echo "$bindir/resolveip"
  165.       echo "Please configure the 'hostname' command to return a correct hostname."
  166.       echo "If you want to solve this at a later stage, restart this script with"
  167.       echo "the --force option"
  168.       exit 1
  169.     fi
  170.     echo "WARNING: The host '$hostname' could not be looked up with resolveip."
  171.     echo "This probably means that your libc libraries are not 100 % compatible"
  172.     echo "with this binary MySQL version. The MySQL daemon, mysqld, should work"
  173.     echo "normally with the exception that host name resolving will not work."
  174.     echo "This means that you should use IP addresses instead of hostnames"
  175.     echo "when specifying MySQL privileges !"
  176.   fi
  177. fi
  178.  
  179. if test "$ip_only" = "1"
  180. then
  181.   ip=`echo "$resolved" | awk '/ /{print $6}'`
  182.   hostname=$ip
  183. fi
  184.  
  185. # Create database directories mysql & test
  186.  
  187.   if test ! -d $ldata; then mkdir $ldata; chmod 700 $ldata ; fi
  188.   if test ! -d $ldata/mysql; then mkdir $ldata/mysql;  chmod 700 $ldata/mysql ; fi
  189.   if test ! -d $ldata/test; then mkdir $ldata/test;  chmod 700 $ldata/test ; fi
  190.   if test -w / -a ! -z "$user"; then
  191.     chown $user $ldata $ldata/mysql $ldata/test;
  192.   fi
  193.  
  194. if test ! -f $mdata/db.frm
  195. then
  196.   c_d="yes"
  197. fi
  198.  
  199. if test $verbose = 1
  200. then
  201.   create_option="verbose"
  202. else
  203.   create_option="real"
  204. fi
  205.  
  206. if test -n "$user"; then
  207.   args="$args --user=$user"
  208. fi
  209.  
  210. if test "$in_rpm" -eq 0 -a "$windows" -eq 0
  211. then
  212.   echo "Installing all prepared tables"
  213. fi
  214. mysqld_install_cmd_line="$mysqld $defaults $mysqld_opt --bootstrap \
  215. --skip-grant-tables --basedir=$basedir --datadir=$ldata --skip-innodb \
  216. --skip-bdb --skip-ndbcluster $args --max_allowed_packet=8M --net_buffer_length=16K"
  217. if $scriptdir/mysql_create_system_tables $create_option $mdata $hostname $windows \
  218.    | eval "$mysqld_install_cmd_line" 
  219. then
  220.   if test -n "$fill_help_tables"
  221.   then
  222.     if test "$in_rpm" -eq 0 -a "$windows" -eq 0
  223.     then
  224.       echo "Fill help tables"
  225.     fi
  226.     echo "use mysql;" > $tmp_file
  227.     cat $tmp_file $fill_help_tables | eval "$mysqld_install_cmd_line"
  228.     res=$?
  229.     rm $tmp_file
  230.     if test $res != 0
  231.     then
  232.       echo ""
  233.       echo "WARNING: HELP FILES ARE NOT COMPLETELY INSTALLED!"
  234.       echo "The \"HELP\" command might not work properly"
  235.       echo ""
  236.     fi
  237.   fi
  238.   if test "$in_rpm" = 0 -a "$windows" = 0
  239.   then
  240.     echo ""
  241.     echo "To start mysqld at boot time you have to copy support-files/mysql.server"
  242.     echo "to the right place for your system"
  243.     echo
  244.   fi
  245.   if test "$windows" -eq 0
  246.   then
  247.   echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !"
  248.   echo "To do so, start the server, then issue the following commands:"
  249.   echo "$bindir/mysqladmin -u root password 'new-password'"
  250.   echo "$bindir/mysqladmin -u root -h $hostname password 'new-password'"
  251.   echo "See the manual for more instructions."
  252.   #
  253.   # Print message about upgrading unless we have created a new db table.
  254.   if test -z "$c_d"
  255.   then
  256.     echo
  257.     echo "NOTE:  If you are upgrading from a MySQL <= 3.22.10 you should run"
  258.     echo "the $bindir/mysql_fix_privilege_tables. Otherwise you will not be"
  259.     echo "able to use the new GRANT command!"
  260.   fi
  261.   echo
  262.   if test "$in_rpm" = "0"
  263.   then
  264.     echo "You can start the MySQL daemon with:"
  265.     echo "cd /usr/local ; $bindir/mysqld_safe &"
  266.     echo
  267.     echo "You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory:"
  268.     echo "cd sql-bench ; perl run-all-tests"
  269.     echo
  270.   fi
  271.   echo "Please report any problems with the /usr/local/bin/mysqlbug script!"
  272.   echo
  273.   echo "The latest information about MySQL is available on the web at"
  274.   echo "http://www.mysql.com"
  275.   echo "Support MySQL by buying support/licenses at https://order.mysql.com"
  276.   fi
  277.   exit 0
  278. else
  279.   echo "Installation of system tables failed!"
  280.   echo
  281.   echo "Examine the logs in $ldata for more information."
  282.   echo "You can also try to start the mysqld daemon with:"
  283.   echo "$mysqld --skip-grant &"
  284.   echo "You can use the command line tool"
  285.   echo "$bindir/mysql to connect to the mysql"
  286.   echo "database and look at the grant tables:"
  287.   echo
  288.   echo "shell> $bindir/mysql -u root mysql"
  289.   echo "mysql> show tables"
  290.   echo
  291.   echo "Try 'mysqld --help' if you have problems with paths. Using --log"
  292.   echo "gives you a log in $ldata that may be helpful."
  293.   echo
  294.   echo "The latest information about MySQL is available on the web at"
  295.   echo "http://www.mysql.com"
  296.   echo "Please consult the MySQL manual section: 'Problems running mysql_install_db',"
  297.   echo "and the manual section that describes problems on your OS."
  298.   echo "Another information source is the MySQL email archive."
  299.   echo "Please check all of the above before mailing us!"
  300.   echo "And if you do mail us, you MUST use the /usr/local/bin/mysqlbug script!"
  301.   exit 1
  302. fi
  303.